home *** CD-ROM | disk | FTP | other *** search
- // BrowserAssocTable.h
- //
- // Free software created 1 Feb 1992
- // by Paul Burchard <burchard@math.utah.edu>.
- //
- // Provides a scrolling list of strings with dimmed associated strings in
- // NX_LISTMODE; i.e. its entries may be multiply selected in all the usual
- // ways. See the BrowserPane class for details.
- //
- // The associated string values are set via the -setAssocStringValue:at:
- // method.
-
- #import "BrowserPane.h"
-
- @interface BrowserAssocTable : BrowserPane
-
- - initFrame:(const NXRect *)frameRect;
- - setAssocStringValue:(const char *)aString at:(int)row;
- - (const char *)assocStringValueAt:(int)row;
-
- @end
-
-